home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / examples / demo / demotext / tankleak.txt < prev    next >
Text File  |  1997-07-08  |  4KB  |  122 lines

  1.  
  2.             ENVIRONMENTAL MODELING
  3.        LEAKY UNDERGROUND STORAGE TANKS
  4.  
  5. This demonstration is an Environmental Modeling application
  6. that shows the leakage from an array of underground storage
  7. tanks. The display has the following features:
  8.  
  9. Bore Holes
  10. ----------
  11. A series of bore holes were drilled into a test site to 
  12. sample two contamination values in the soil. These contaminants 
  13. are called Element 1 and Element 2. The bore holes are 
  14. represented in the visualization using colored polylines,  
  15. with the colors derived from the values of element 1 along the 
  16. bore hole. The bore hole data is then stored as an irregular 
  17. grid of values, which are read into IDL and gridded using
  18. IDL's 3D gridding routines. This produces a 3D array of data
  19. values on a regular uniform grid.
  20.  
  21.   
  22. Contamination Plume
  23. -------------------
  24. The 3D volume is used to compute 3D contours (isosurfaces) 
  25. given a contour level (isosurface level) for a particular 
  26. element. This contour level is controlled by the slider under 
  27. the "Isosurface Controls".  When the contour is generated, 
  28. you can choose to use Element 1 or Element 2 for the isosurface
  29. to represent a contamination plume for the specified value. 
  30. You can also choose to compute colors based on a different
  31. contaminant. This allows the user to view the relationship
  32. between the two elements at the same time.
  33.  
  34. Notice that when selecting the same element for both the 
  35. Isosurface and the Colors, that the resulting surface is a 
  36. constant color.
  37.  
  38. The high and low values are the laboratory test results.
  39.  
  40. Tank Geometry
  41. -------------
  42. The storage tank geometry is generated using the IDL function 
  43. MESH_OBJ to create a surface of revolution given a profile 
  44. curve. The output of MESH_OBJ is then used to create IDL
  45. Object Graphics IDLgrPolygon objects, which represent the
  46. individual storage tanks.
  47.  
  48. You can rotate the display by positioning the mouse
  49. in the draw widget, holding down the left mouse button,
  50. and dragging the mouse.
  51.  
  52. MENU OPTIONS
  53. ------------
  54.  
  55. File Menu:
  56.  
  57.     Select "Quit" to exit the demo.
  58.  
  59. Isosurface Menu:
  60.  
  61.     Select "Flat" or "Gouraud" from the "Shading" sub-menu
  62.     to alter the type of shading used in displaying the
  63.     contamination plumes.
  64.  
  65.     Select "Wire" or "Solid" from the "Style" sub-menu to
  66.     alter the surface representation of the contamination
  67.     plumes.
  68.  
  69. View Menu:
  70.  
  71.     Select an item from the "Show Object" sub-menu to 
  72.     toggle display of that object on and off in the 
  73.     display area.
  74.  
  75.     Select "Low" or "High" from the "Drag Quality"
  76.     sub-menu to change the appearance of the display
  77.     during rotation. Selecting "Low" will increase
  78.     the speed of rotation operations. This setting
  79.     only affects the quality of the image during
  80.     rotation.
  81.     
  82.     Select "Reset Orientation" from the "Reset" sub-menu
  83.     to restore the display to its original orientation.
  84.  
  85. About Menu:
  86.  
  87.     Select "About Environmental Modeling" to display this
  88.     help text.
  89.  
  90. FEATURES OF THE ENVIRONMENTAL MODELING DEMO
  91. -------------------------------------------
  92.  
  93.     The following graphical user interface elements
  94.     allow you to control the demo.
  95.  
  96. <<Element Selections Radio Buttons>>
  97.     
  98.     Select one button from the "Isosurface" button group
  99.     to display the isosurface contours for either Element1
  100.     or Element2. 
  101.  
  102.     Select one button from the "Shaded Colors" button
  103.     group to display the concentrations of the selected
  104.     element using color.
  105.     
  106.     Note that if the same element is selected from both
  107.     the "Isosurface" and "Shaded Colors" groups, the surfaces
  108.     will be a single color. If different elements are 
  109.     selected, the concentration of the element selected
  110.     in the "Shaded Colors" button group is overlaid on
  111.     the isosurface data for the other element.
  112.  
  113. <<Isosurface Controls Slider>>
  114.  
  115.     Adjust this slider to adjust the value used to determine
  116.     whether a given location is contaminated or not. If the
  117.     value of the specified element at a given location is
  118.     higher than the value of the Isosurface slider, that
  119.     location will appear within the isosurface.
  120.  
  121.  
  122.